home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 1994 October / PC Zone October 1994 Cover CD-Rom.bin / doom / doom.bat next >
DOS Batch File  |  1994-01-16  |  673b  |  54 lines

  1. @echo off
  2. :TOP
  3. \GO-MENU DOOM.MNU
  4. if errorlevel 8 goto END
  5. if errorlevel 7 goto HELP
  6. if errorlevel 6 goto INFO
  7. if errorlevel 5 goto MOREWADS
  8. if errorlevel 4 goto OTHERS
  9. if errorlevel 3 goto FINALISTS
  10. if errorlevel 2 goto RUNNERSUP 
  11. if errorlevel 1 goto WINNER
  12. goto TOP
  13.  
  14. :WINNER
  15. cd winner
  16. call winner.bat
  17. cd \DOOM
  18. goto TOP
  19.  
  20. :RUNNERSUP
  21. cd runnerup
  22. call runnerup.bat
  23. cd \DOOM
  24. goto TOP
  25.  
  26. :FINALISTS
  27. cd finalsts
  28. call finalsts.bat
  29. cd \DOOM
  30. goto TOP
  31.  
  32. :OTHERS
  33. cd entries
  34. call entries.bat
  35. cd \DOOM
  36. goto TOP
  37.  
  38. :MOREWADS
  39. cd morewads
  40. call morewads.bat
  41. cd \DOOM
  42. goto TOP
  43.  
  44. :INFO
  45. see info.txt
  46. goto TOP
  47.  
  48. :HELP
  49. see help.txt
  50. goto TOP
  51.  
  52. :END
  53.  
  54.